home *** CD-ROM | disk | FTP | other *** search
/ Into His Marvelous Light / Into His Marvelous LIGHT.iso / lesson2.dxr / 00058_Script_Go Next Button < prev    next >
Text File  |  1998-01-03  |  653b  |  33 lines

  1. -- DESCRIPTION --
  2.  
  3. on getBehaviorDescription me
  4.   return "¼
  5. GO NEXT BUTTON"&RETURN&RETURN&"¼
  6. Moves the playback head to the next marker ¼
  7. when the user clicks on the sprite."&RETURN&RETURN&"¼
  8. PERMITTED MEMBER TYPES:"&RETURN&"Graphic members"&RETURN&RETURN&"¼
  9. PARAMETERS: None"
  10. end getBehaviorDescription
  11.  
  12.  
  13. on getBehaviorTooltip me
  14.   return "¼
  15. Use with graphic members."&RETURN&RETURN&"¼
  16. Moves the playback head to"&RETURN&"¼
  17. the next marker on mouseUp."
  18. end getBehaviorTooltip
  19.  
  20.  
  21.  
  22. -- HISTORY --
  23.  
  24. -- 3 November 1998, written for the D7 Behaviors Palette by James Newton
  25.  
  26.  
  27.  
  28. on mouseUp me
  29.   delay 240
  30.   go #next
  31. end mouseUp
  32.  
  33.